home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000116_news@columbia.edu_Fri Dec 15 10:50:02 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27916
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Sat, 16 Dec 1995 02:16:05 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id CAA19788 for kermit.misc@watsun; Sat, 16 Dec 1995 02:16:02 -0500
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!howland.reston.ans.net!newsfeed.internetmci.com!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Uploading into EDT editor
  8. Message-Id: <1995Dec15.165002.69763@cc.usu.edu>
  9. Date: 15 Dec 95 16:50:02 MDT
  10. References: <4aronp$ks5@huron.eel.ufl.edu>
  11. Organization: Utah State University
  12. Lines: 41
  13. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14.  
  15. In article <4aronp$ks5@huron.eel.ufl.edu>, afn10375@afn.org (David A. Johns) writes:
  16. > Can anyone tell me why I should be having trouble doing an ascii
  17. > upload into the EDT editor on a VAX/VMS system (using MS-Kermit 
  18. > 3.14)?
  19. > Here's what happens.  With a normal DOS text file (end of line =
  20. > CR/LF), when I TRANSMIT the file, each line shows the character "M"
  21. > at the end, but the next line continues on the same line -- i.e.,
  22. > neither a CR nor an LF registers on the screen.  After the first few
  23. > lines, the transmission stops at each "M" and I have to hit enter
  24. > for the transmission to continue.  When the transmission is finished,
  25. > I can return to CONNECT mode and hit ^R (screen refresh) and the message
  26. > is there, all formatted properly, with no difference between the lines
  27. > at the beginning, where I didn't have to hit enter, and those further
  28. > down, where I did.
  29. > This is all with the stock SET TRANSMIT settings.  I've also played 
  30. > with those.  I've tried sending LF, with no visible effect.  Once 
  31. > I set the pause to 1000 milliseconds, and apparently froze Kermit
  32. > (I never got the command line prompt back).  
  33. > If I TRANSMIT into the standard VMS mail editor (send/noedit), the
  34. > message displays properly and I don't have to hit enter on each line.
  35. > The VMS terminal is set to VT100 (and I've tried VT100, VT102, VT220,
  36. > and VT320 in Kermit with no differences).  But using the standard
  37. > editor isn't an option because it allows only very short messages
  38. > (512 bytes?).
  39. > Also, I haven't had this problem with any of several other programs
  40. > I've used to contact this system over the years.
  41. > Any ideas?
  42. ----------
  43.     Your are placing new text into a full screen editor. EDT wants to
  44. move the cursor around as a result, rather than simply echoing CR back
  45. to MSK. Consequently, what EDT does echo comes out as one line overlapping
  46. the next on your MSK screen, but the text is actually inserted properly.
  47. This is typical of full screen editors when inserting material in the
  48. middle (and sometimes even at the end) of a document. Just ignore the
  49. false echoing and do that screen refresh after reentering Connect mode.
  50.     Joe D.